home *** CD-ROM | disk | FTP | other *** search
- /**
- * AsciiShop.java
- *
- * Title: ASCII Shop
- * Description: The goal of this program is to provide many functionalities of photoshop, with ASCII art.
- * @author Expotech
- * @version
- */
-
- package asciiShop;
-
- public class AsciiShop {
- public AsciiShop() {
- try {
- mainFrame frame = new mainFrame();
- frame.initComponents();
- frame.setVisible(true);
- }
- catch (Exception e) {
- e.printStackTrace();
- }
- }
-
- // Main entry point
- static public void main(String[] args) {
- new AsciiShop();
- }
-
- }
-